DocumentsApi 
            interface DocumentsApi
Content copied to clipboard
Functions
deleteDocuments
                          
                    Link copied to clipboard
                        @DELETE(value = documents) 
Content copied to clipboard
documentImage
                          
                    Link copied to clipboard
                        @GET(value = documents/{id}/image) 
Content copied to clipboard
documentPdf
                          
                    Link copied to clipboard
                        @GET(value = documents/{id}/pdf) 
Content copied to clipboard
editDocument
                          
                    Link copied to clipboard
                        @PATCH(value = documents/{id}) 
Content copied to clipboard
getDocumentById
                          
                    Link copied to clipboard
                        @GET(value = documents/{id}) 
Content copied to clipboard
getDocuments
                          
                    Link copied to clipboard
                        @GET(value = documents) 
Content copied to clipboard
getDocumentsStatus
                          
                    Link copied to clipboard
                        @GET(value = documents/status) 
Content copied to clipboard
Query documents for processing status updates Query a list of documents (using their id) for their processing status Responses:
- 200: Success. The list of document statuses was successfully retrieved. 
- 400: Bad Request. This will occur if you omit a required parameter, send an invalid parameter or if you provide an invalid value for a parameter. 
- 401: Unauthorized. This will occur if you do not supply an access-token to this endpoint, or if you provide an expired or invalid access token. 
- 403: Forbidden. This will occur if you try to use this endpoint without being setup for documents. 
- 500: Internal Server Error. 
postDocument
                          
                    Link copied to clipboard
                        @POST(value = documents) 
@Multipart()
Content copied to clipboard